home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / Libraries / C Internet Config / IC Application Source ƒ / Headers ƒ / IC Edit Pref AppleEvents.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-11-20  |  583 b   |  31 lines  |  [TEXT/SPM ]

  1. /*
  2.     IC Edit Pref AppleEvents.h
  3.     
  4. */
  5.  
  6. #pragma once
  7.  
  8. #ifndef __H_IC_Edit_Pref_AppleEvents__
  9. #define __H_IC_Edit_Pref_AppleEvents__
  10.  
  11. #define EPSuite 'ICAp'
  12. #define EPEvent 'ICAp'
  13.  
  14. // direct parameter is key
  15. #define EPDestination 'dest' // pass true if you want the default preference file.  Defaults to current pref file (or default pref file if none)
  16.  
  17. #ifdef __cplusplus
  18. extern "C" {
  19. #endif
  20.  
  21. pascal OSErr HandleEditPrefAE(AppleEvent* event,AppleEvent* reply,long ignored);
  22. void SetupEditPrefAppleEvent(void);
  23.  
  24. #ifdef __cplusplus
  25. }
  26. #endif
  27.  
  28. #endif /* __H_IC_Edit_Pref_AppleEvents__ */
  29.  
  30.  
  31.